MD5 hash for « 1D 16 4B 37 5B 72 A5 57 28 B9 1D 64 B6 A3 C2 05 75 6E 66 69 78 65 64 20 69 6E 66 6F 73 00 00 0E DB 4B 9E 3F 45 27 8F 39 7E FF 9B 4F B9 93 00 00 04 49 17 DC 76 B4 96 40 D6 F8 39 39 96 0F AE D4 EF 39 2F AA B2 14 28 AA 21 FB 54 E5 45 05 47 66 »

The MD5 hash of 1D 16 4B 37 5B 72 A5 57 28 B9 1D 64 B6 A3 C2 05 75 6E 66 69 78 65 64 20 69 6E 66 6F 73 00 00 0E DB 4B 9E 3F 45 27 8F 39 7E FF 9B 4F B9 93 00 00 04 49 17 DC 76 B4 96 40 D6 F8 39 39 96 0F AE D4 EF 39 2F AA B2 14 28 AA 21 FB 54 E5 45 05 47 66 is a85e02ccc1685e382fd63d7d3466bcb0

You can attempt to reverse the MD5 hash which was just generated, to reverse it into the originally provided string:

Reverse a MD5 hash

Feel free to experiment MD5 hashing with more strings. Just enter a new string and submit the form to convert it into another MD5 hash.

Convert a string to a MD5 hash

What is a MD5 hash?

MD5 (Message Digest algorithm, 5th version) is an algorithm which converts a given sequence of characters into another unique sequence of characters, with a fixed length, called "hash". For instance, the MD5 hash of the word password is 5f4dcc3b5aa765d61d8327deb882cf99.

These hashes are mostly used to validate file integrity, to encrypt sensitive data (like passwords), and to generate unique identifiers.

Is it secure?

MD5 hashes are theoretically impossible to reverse directly, ie, it is not possible to retrieve the original string from a given hash using only mathematical operations.

Most web sites and applications store their user passwords into databases with MD5 encryption. This method appears to be safe as it seems impossible to retrieve original user passwords if, say, a hacker manages to have a look at the database content.

Unfortunately, there is a way to decrypt a MD5 hash, using a dictionary populated with strings and their MD5 counterpart. As most users use very simple passwords (like "123456", "password", "abc123", etc), MD5 dictionaries make them very easy to retrieve.

This website uses a MD5 reverse dictionary containing several millions of entries, which you can use with MD5 hashes from your application.

If some of the hashes you enter can be reversed, consider using another way of generating hashes, like using stronger algorithms (SHA-2, Whirlpool, etc), combining algorithms, and using a "salt".